Version

RVInMemoryData<T> Class

In-memory data implementation that returns data from the IEnumerable object passed to the constructor, this is the recommended implementation of IRVInMemoryData to use in most of the use cases, as it's the simpler to use. The schema will be automatically calculated from the T data type.
Syntax
'Declaration
 
Public Class RVInMemoryData(Of T) 
   Inherits RVInMemoryData
   Implements IRVInMemoryDataIRVInMemoryDataProvider 
public class RVInMemoryData<T> : RVInMemoryData, IRVInMemoryDataIRVInMemoryDataProvider  
Type Parameters
T
The type that will be used for rows in this in-memory data, the schema will be automatically populated using the public properties in this type
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also